-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reorder evmc_message fields #128
Conversation
f0c376a
to
cfe7bd9
Compare
bab196c
to
a1da857
Compare
a1da857
to
9a2d07e
Compare
@@ -70,58 +70,58 @@ enum evmc_flags | |||
*/ | |||
struct evmc_message | |||
{ | |||
/** The kind of the call. For zero-depth calls ::EVMC_CALL SHOULD be used. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this isn't changed in this PR, but I think this comment is invalid, it can be create even for depth 0.
So didn't #123 say that move |
Looks like it is not need at the moment, unless WAVM needs it. It was never taken from the database, was computed on the fly so VM is capable of doing the same. |
With the |
The |
Isn't #123 saying that |
Yes it says that, but now I prefer to skip it. |
I don't need it myself so OK to remove it. |
I prefer add features when there is use for them. And execute() together with message is a ton of params anyway. |
Resolves #123.
Resolves #122.